:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-purple: #8132CD;
    --accent-purple-hover:#330A8B;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #333;
    --card-bg: rgba(30, 30, 30, 0.7);
    --light-bg: #f8f9fa;
    --light-text: #212529;
    --light-card: rgba(255, 255, 255, 0.9);
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition-speed) ease;
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--light-text);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.light-mode #preloader {
    background: var(--light-bg);
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: var(--accent-purple) transparent var(--accent-purple-hover) transparent;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-hover));
    z-index: 9998;
    transition: width 0.1s ease;
}

/* Navigation */
.navbar-custom {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    padding: 15px 0;
}

.light-mode .navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
    color: var(--accent-purple) !important;
    font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    display: flex;
    align-items: center;
}

.light-mode .navbar-brand {
    color: var(--accent-purple) !important;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    bottom: 0;
    right: -12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding: 8px 0 !important;
}

.light-mode .nav-link {
    color: var(--light-text) !important;
}

.nav-link:hover {
    color: var(--accent-purple) !important;
}

.light-mode .nav-link:hover {
    color: var(--accent-purple) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-hover));
    transition: all 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}
.btn-purple {
    background: linear-gradient(135deg, #913DE2, #330A8B);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(145, 61, 226, 0.3); /* subtle purple shadow */
}

.btn-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #330A8B, #913DE2); /* reversed gradient on hover */
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-purple:hover::before {
    width: 100%;
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(145, 61, 226, 0.4);
}

.btn-outline-purple {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-purple:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145, 61, 226, 0.3);
    text-decoration: none;
}

.light-mode .btn-outline-purple {
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.light-mode .btn-outline-purple:hover {
    background: var(--accent-purple);
    color: white;
}


/* Theme Toggle */
.theme-toggle {
    background: var(--secondary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.light-mode .theme-toggle {
    background: #e9ecef;
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--primary-dark) 150%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}
.matt_hopes_title {
    width: 520px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    /* color: var(--text-secondary); */
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.stat-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    /* color: var(--text-secondary); */
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Portfolio Sections */
.portfolio-section {
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
    transition: all 0.8s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-hover));
    border-radius: 2px;
}
        
.section-title2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
    transition: all 0.8s ease;
}

.section-title2.animate {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.section-title2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-hover));
    border-radius: 2px;
}
.light-mode .section-title  .section-title2 {
    color: var(--accent-purple);
}

.filter-controls {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.filter-controls.animate {
    opacity: 1;
    transform: translateY(0);
}

.search-box {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 30px;
    padding: 12px 25px;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.light-mode .search-box {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
    color: var(--light-text);
}

.search-box:focus {
    background-color: var(--secondary-dark);
    border-color: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.light-mode .search-box:focus {
    background-color: var(--light-card);
}

.filter-tag {
    background-color: var(--secondary-dark);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.light-mode .filter-tag {
    background-color: var(--light-card);
    color: var(--light-text);
    border: 1px solid #dee2e6;
}

.filter-tag:hover,
.filter-tag.active {
    background: linear-gradient(135deg, #913DE2, #330A8B);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 61, 226, 0.3); /* soft purple glow */
}



.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.portfolio-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.light-mode .portfolio-item {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
}

.light-mode .portfolio-item:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item-content {
    padding: 1.8rem;
}

.portfolio-item h5 {
    color: var(--accent-purple);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.light-mode .portfolio-item h5 {
    color: var(--accent-purple);
}

.portfolio-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.light-mode .portfolio-item p {
    color: #6c757d;
}




.light-mode .tag {
    background: rgba(139, 92, 246, 0.1);
}

.tag:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

/* Modal */
.modal-content {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.light-mode .modal-content {
    background-color: white;
    border: 1px solid #dee2e6;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.light-mode .modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    color: var(--accent-purple);
    font-weight: 700;
}

.light-mode .modal-title {
    color: var(--accent-purple);
}

.btn-close {
    filter: invert(1);
}

.light-mode .btn-close {
    filter: invert(0);
}

.modal-body {
    padding: 2rem;
}

.modal-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ease;
}

.modal-img.animate {
    transform: scale(1);
    opacity: 1;
}

.light-mode .modal-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-tags {
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.review-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.light-mode .review-card {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
}

.light-mode .review-card:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.review-rating {
    color: #ffd700;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.review-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-purple);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    transition: all var(--transition-speed) ease;
}

.review-card:hover .review-image {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.contact-item {
    margin-bottom: 3rem;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.light-mode .contact-item {
    background: var(--light-card);
    border: 1px solid #dee2e6;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.light-mode .contact-item:hover {
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.2);
    color: var(--accent-purple-hover);
}

.contact-item h5 {
    color: var(--accent-purple);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.light-mode .contact-item h5 {
    color: var(--accent-purple);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.light-mode .contact-item p {
    color: #6c757d;
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.light-mode .footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.light-mode .footer-link {
    color: #6c757d;
}

.footer-link:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.light-mode .social-icon {
    background: #e9ecef;
    color: var(--light-text);
    border: 1px solid #dee2e6;
}

.social-icon:hover {
    background: linear-gradient(135deg, #913DE2, #330A8B);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(145, 61, 226, 0.4); /* adjusted to match #913DE2 tone */
}


/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1440px) {

    .matt_hopes_title {
        width: 450px;
        margin-top: 180px;
    }

}
@media (max-width: 1200px) {

    .matt_hopes_title {
        width: 450px;
        margin-top: 180px;
    }

}
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .matt_hopes_title {
        width: 250px;
        margin-top: 280px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-title2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .matt_hopes_title {
        width: 250px;
        margin-top: 210px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-title2 {
        font-size: 2.2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .contact-item {
        padding: 20px;
    }
}

/* Hidden sections by default */
.page-section {
    display: none;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#home.active {
    display: flex;
}

/* Cursor Effect */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}
#nightyeight:hover {
    cursor: pointer;
}
    /* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--accent-gradient), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
}

.light-mode .service-card {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(129, 50, 205, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
}


.tag {

    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    color: #E0D3B6 !important; /* Aged parchment text */
    background-color: rgba(90, 80, 70, 0.7) !important; /* Semi-transparent stone */
    border: 1px solid #5A5046 !important; /* Weathered border */
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1); /* 3D effect */
    backdrop-filter: blur(2px); /* Slight blur for blending */
}

/* Blue */
.tag-blue { 
    color: #3286CD !important;
    background-color: #273E46 !important;
}

/* Green */
.tag-green { 
    color: #52CD32 !important;
    background-color: #344627 !important;
}

/* Red */
.tag-red { 
    color: #CA3B32 !important;
    background-color: #46272B !important;
}

/* Aqua Green */
.tag-aqua-green { 
    color: #32CD89 !important;
    background-color: #274633 !important;
}

/* Magenta */
.tag-magenta { 
    color: #CD32A7 !important;
    background-color: #462744 !important;
}

/* Light Blue */
.tag-light-blue { 
    color: #3932CD !important;
    background-color: #272B46 !important;
}

/* Yellow */
.tag-yellow { 
    color: #C1CD32 !important;
    background-color: #464327 !important;
}

/* Orange */
.tag-orange { 
    color: #CD9832 !important;
    background-color: #464327 !important;
}

/* Brown */
.tag-brown { 
    color: #493714 !important;
    background-color: #100B05 !important;
}

/* Gray */
.tag-gray { 
    color: #5B5B5B !important;
    background-color: #2E2E2E !important;
}

/* White */
.tag-white { 
    color: #F4F4F4 !important;
    background-color: #969696 !important;
}

/* Black */
.tag-black { 
    color: #111111 !important;
    background-color: #F4F4F4 !important;
}

/* Type Tags - Styled differently to distinguish from regular tags */
.type-tag {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-right: 6px;
    margin-bottom: 6px;
    display: inline-block;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    color: #E0D3B6 !important;
    background-color: rgba(90, 80, 70, 0.8) !important;
    border: 2px solid #5A5046 !important;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-tag:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.type-tags-container {
    margin-bottom: 0.5rem;
}

/* Modal type tags container */
.modal-type-tags {
    margin-top: 0.75rem;
    text-align: center;
    max-width: 300px;
}

.modal-type-tags .type-tag {
    margin: 2px;
    font-size: 0.7rem;
    padding: 3px 8px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
}

.about-content {
    max-width: 100%;
}

.about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.light-mode .about-intro .lead {
    color: var(--light-text);
}

.about-highlights {
    margin: 3rem 0;
}

.highlight-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.light-mode .highlight-card {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 25px rgba(129, 50, 205, 0.15);
}

.highlight-icon {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-card p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.light-mode .highlight-card p {
    color: var(--light-text);
}

.skills-section {
    margin-top: 3rem;
}

.skill-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.light-mode .skill-card {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(129, 50, 205, 0.2);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple), #330A8B);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-icon {
    color: var(--accent-purple);
    font-size: 2rem;
}

.skill-header h4 {
    color: var(--accent-purple);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.skill-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.light-mode .skill-content p {
    color: var(--light-text);
}

.skill-content p:last-child {
    margin-bottom: 0;
}

.about-conclusion {
    text-align: center;
}

.conclusion-card {
    background: linear-gradient(135deg, rgba(129, 50, 205, 0.1), rgba(51, 10, 139, 0.1));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--accent-purple);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.light-mode .conclusion-card {
    background: linear-gradient(135deg, rgba(129, 50, 205, 0.05), rgba(51, 10, 139, 0.05));
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(129, 50, 205, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.conclusion-icon {
    color: var(--accent-purple);
    font-size: 2.5rem;
    z-index: 1;
}

.conclusion-card .lead {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-purple);
    z-index: 1;
}

/* My Services in About Page */
.my-services-about {
    border-top: 2px solid var(--accent-purple);
    padding-top: 3rem;
    margin-top: 3rem;
}

.services-subtitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-purple);
    font-weight: 600;
    position: relative;
}

.services-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-purple), #330A8B);
    border-radius: 2px;
}

.service-card-about {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.light-mode .service-card-about {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
}

.service-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple), #330A8B);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.service-card-about:hover::before {
    transform: scaleX(1);
}

.service-card-about:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(129, 50, 205, 0.2);
}

.service-card-about .service-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.service-card-about:hover .service-icon {
    transform: scale(1.1);
}

.service-card-about h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.light-mode .service-card-about p {
    color: var(--light-text);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-intro .lead {
        font-size: 1.1rem;
    }
    
    .skill-card {
        padding: 2rem;
    }
    
    .skill-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .skill-header h4 {
        font-size: 1.2rem;
    }
    
    .conclusion-card {
        padding: 2rem;
    }
    
    .conclusion-card .lead {
        font-size: 1.1rem;
    }
    
    .services-subtitle {
        font-size: 2rem;
    }
    
    .service-card-about {
        padding: 1.5rem;
    }
    
    .service-card-about .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card-about h4 {
        font-size: 1.2rem;
    }
}

/* Admin Section Styles */
.admin-section {
    border-top: 2px solid var(--accent-purple);
    padding-top: 2rem;
    margin-top: 2rem;
}

.admin-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.light-mode .admin-card {
    background: var(--light-card);
    border-color: #dee2e6;
}

.admin-card .card-header {
    background: rgba(129, 50, 205, 0.1);
    border-bottom: 1px solid var(--border-color);
    border-radius: 12px 12px 0 0;
}

.light-mode .admin-card .card-header {
    background: rgba(129, 50, 205, 0.05);
    border-bottom-color: #dee2e6;
}

.admin-review-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-purple);
}

.light-mode .admin-review-item {
    background: rgba(0, 0, 0, 0.05);
}

.admin-review-item.hidden-review {
    opacity: 0.6;
    border-left-color: #666;
}

.admin-review-item .review-info {
    flex: 1;
    margin-right: 1rem;
}

.admin-review-item .review-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Dynamic Review Cards */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.light-mode .review-card {
    background: var(--light-card);
    border-color: #dee2e6;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-hover));
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(129, 50, 205, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-name {
    color: var(--accent-purple);
    font-weight: 600;
    margin: 0;
}

.light-mode .review-name {
    color: var(--accent-purple);
}

.review-rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-comment {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.light-mode .review-comment {
    color: var(--light-text);
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.light-mode .review-date {
    color: #6c757d;
}

/* Review Tags */
.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 15px;
    background: rgba(129, 50, 205, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(129, 50, 205, 0.3);
    transition: all 0.3s ease;
}

.light-mode .review-tag {
    background: rgba(129, 50, 205, 0.05);
    color: var(--accent-purple);
}

.review-tag:hover {
    background: rgba(129, 50, 205, 0.2);
    transform: translateY(-1px);
}

.nationality-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}

.light-mode .nationality-tag {
    background: rgba(52, 152, 219, 0.05);
}

.service-tag {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}

.light-mode .service-tag {
    background: rgba(46, 204, 113, 0.05);
}

/* Form Styles */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
}

.light-mode .form-control,
.light-mode .form-select {
    background: #fff;
    border-color: #ced4da;
    color: var(--light-text);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 0.2rem rgba(129, 50, 205, 0.25);
    color: var(--text-primary);
}

.light-mode .form-control:focus,
.light-mode .form-select:focus {
    background: #fff;
    color: var(--light-text);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.light-mode .form-label {
    color: var(--light-text);
}

/* Shop specific styles */
.shop-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
}

.shop-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.light-mode .shop-item {
    background-color: var(--light-card);
    border: 1px solid #dee2e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shop-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
}

.light-mode .shop-item:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.shop-price-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.shop-price {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    gap: 1rem;
}

.shop-item-tags {
    flex: 1;
}

.shop-buy-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.shop-buy-btn:hover {
    background: linear-gradient(135deg, #9333ea, var(--accent-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.shop-buy-btn:active {
    transform: translateY(0);
}

/* Light mode shop styles */
.light-mode .shop-price {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.light-mode .shop-buy-btn {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.light-mode .shop-buy-btn:hover {
    background: linear-gradient(135deg, #9333ea, var(--accent-purple));
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* Feature cards for shop page */
.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h5 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Light mode feature cards */
.light-mode .feature-card {
    background: var(--light-card);
    border: 1px solid #dee2e6;
}

.light-mode .feature-card:hover {
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
}

.light-mode .feature-card h5 {
    color: var(--accent-purple);
}

.light-mode .feature-card p {
    color: #6c757d;
}

/* Shop Details Modal */
.shop-detail-images .main-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
}

.light-mode .shop-detail-images .main-image-container {
    background: var(--light-card);
}

.shop-thumbnail {
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.shop-thumbnail:hover {
    border-color: var(--accent-purple);
    opacity: 0.8;
}

.shop-thumbnail.border-purple {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.shop-detail-info {
    padding: 20px;
}

.price-tag {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    margin-bottom: 20px;
}

.light-mode .price-tag {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

/* Better image fit for portfolio and shop items */
.portfolio-img-container img,
.shop-item .portfolio-img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-speed) ease;
    border-radius: 15px 15px 0 0;
}

.portfolio-item:hover .portfolio-img-container img,
.shop-item:hover .portfolio-img-container img {
    transform: scale(1.05);
}

/* Shop price overlay improvements */
.shop-price-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    opacity: 0.95;
}

.shop-price {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* Ensure images are properly displayed */
.portfolio-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #000;
}

.shop-item .portfolio-img-container {
    height: 250px;
}

/* Shop item content padding */
.shop-item .portfolio-item-content {
    padding: 20px;
}

/* Type tags for shop items */
.shop-item .type-tags {
    margin-top: 10px;
    margin-bottom: 15px;
}

.shop-item .type-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Purple variants for badges */
.bg-purple {
    background-color: var(--accent-purple) !important;
    color: white !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea) !important;
    color: white !important;
}

.border-purple {
    border-color: var(--accent-purple) !important;
}

/* Modal improvements */
.modal-xl .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
}

.light-mode .modal-xl .modal-content {
    background: var(--light-card);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 20px;
}

.light-mode .modal-header {
    border-bottom: 1px solid #dee2e6;
    background: rgba(139, 92, 246, 0.05);
}

.modal-body {
    padding: 30px;
}

.modal-title {
    color: var(--accent-purple);
    font-weight: 600;
}

/* Shop Details Modal Styles */
.shop-detail-images .main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.shop-detail-images .main-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.shop-detail-images .thumbnail-images {
    max-height: 80px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
}

.shop-detail-images .thumbnail-images::-webkit-scrollbar {
    height: 4px;
}

.shop-detail-images .thumbnail-images::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.shop-detail-images .thumbnail-images::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

.shop-thumbnail {
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.shop-thumbnail:hover {
    border-color: var(--accent-purple);
    opacity: 0.8;
}

.shop-thumbnail.border-purple {
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.shop-detail-info .price-tag {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.product-actions .btn-purple {
    background: linear-gradient(135deg, var(--accent-purple), #9333ea);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.product-actions .btn-purple:hover {
    background: linear-gradient(135deg, #9333ea, var(--accent-purple));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.light-mode .modal-title {
    color: var(--accent-purple);
}

/* Dark Mode Text Fix for Shop Details Modal */
:root:not(.light-mode) #shopDetailsModal .product-description p.text-muted,
:root:not(.light-mode) #shopDetailsModal .text-muted {
    color: #e2e8f0 !important;
}

:root:not(.light-mode) #shopDetailsModal .shop-detail-info h3,
:root:not(.light-mode) #shopDetailsModal .shop-detail-info h6 {
    color: var(--text-primary) !important;
}

/* Light Mode Overrides for Shop Details Modal */
.light-mode #shopDetailsModal .product-description p.text-muted,
.light-mode #shopDetailsModal .text-muted {
    color: #6c757d !important;
}

.light-mode #shopDetailsModal .shop-detail-info h3,
.light-mode #shopDetailsModal .shop-detail-info h6 {
    color: var(--text-primary) !important;
}
